home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F38148_testProduct.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  471 b   |  20 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2.    <xsl:import href="product.xsl"/>
  3.  
  4.     <xsl:output  encoding="UTF-8" omit-xml-declaration="yes"/>
  5.  
  6.    <!-- This transformation must be applied to:
  7.         numList.xml 
  8.      -->
  9.  
  10.     <xsl:template match="/">
  11.  
  12.       <xsl:call-template name="product">
  13.         <xsl:with-param name="pList" select="/*/*"/>
  14.       </xsl:call-template>
  15.     </xsl:template>
  16.  
  17.  
  18. </xsl:stylesheet>
  19.  
  20.